home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRIDS / STRGRDEX / DEMO.DPR next >
Text File  |  1996-10-22  |  221b  |  15 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {frmMain},
  6.   strgrdex in 'strgrdex.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TfrmMain, frmMain);
  13.   Application.Run;
  14. end.
  15.